home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / Snippets / QuickDraw / RotateString / PRotate ƒ / RotateStringIntf.p < prev    next >
Encoding:
Text File  |  1994-02-09  |  193 b   |  15 lines  |  [TEXT/PJMM]

  1. unit RotateStringIntf;
  2.  
  3. interface
  4.  
  5.  
  6.     const
  7.  
  8.         clockWise = 0;
  9.         counterClockWise = 1;
  10.  
  11.     function RotateString (str: Str255; var destMap: BitMap; direction: integer): OSErr;
  12.  
  13. implementation
  14.  
  15. end.